home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games: Greatest Hits 1996 / Amiga Games: Greatest Hits 1996.iso / rexx / error.rexx < prev    next >
OS/2 REXX Batch file  |  1996-01-15  |  606b  |  24 lines

  1.  
  2. /* Arexxtestscript for the viruskiller VirusWorkshop from Markus Schmall */
  3. /* Version 1.0 (5.6.1995)                                                */
  4.  
  5. OPTIONS RESULTS                             /* enable return codes     */
  6.  
  7. address 'VWPort'
  8.  
  9.  
  10. OPTIONS FAILAT 999                          /* ignore warnings         */
  11.  
  12. /* ------------------------ inSERT YOUR CODE HERE: ------------------- */
  13.  
  14. say "Try to produce an error..."
  15. "AFILE ram:test.lha"
  16. IF rc=10 THEN say "Unkown command for the arexxport of VirusWorkshop"
  17.  
  18. /* ---------------------------- END OF YOUR CODE --------------------- */
  19.  
  20. EXIT
  21.  
  22.  
  23.  
  24.